using Common; using Common.Model; namespace Repository.Authentication { public interface IAuthenticationRepo { DbResult IsMapAPIWithOtherApp(ClientRegistrationKeys credentials); LoginResponse LoginSystem(LoginCredential credentials); string IsAccessCodeValid(string accessCode, string uuid); DbResult ReSendVerificationCode(VerificationKeys keys); JsonRxResponse GetUser(string userId); bool ValidateAuthenticity(string user, string guid); string GetDevice(string customerId); } }