public BusinessFibonaccis(IMapper iMapper, IRepoBase iRepoBase, IDataFibonaccis iDataFibonaccis) { _iMapper = iMapper; _iRepoBase = iRepoBase; _iDataFibonaccis = iDataFibonaccis; }
public BusinessRoles(IMapper iMapper, IRepoBase iRepoBase) { _iMapper = iMapper; _iRepoBase = iRepoBase; }
public AdminController(IRepoBase <AppUser, string> repoIdentity) { _repoIdentity = repoIdentity; }
public BusinessExceptionLogs(IMapper iMapper, IRepoBase iRepoBase) { _iMapper = iMapper; _iRepoBase = iRepoBase; }
public EmployeeService(IRepoBase <Employee> repo) : base(repo) { }
public BusinessRefreshTokens(IMapper iMapper, IRepoBase iRepoBase) { _iMapper = iMapper; _iRepoBase = iRepoBase; }
public BusinessUsers(IMapper iMapper, IRepoBase iRepoBase, IDataUsers iDataUsers) { _iMapper = iMapper; _iRepoBase = iRepoBase; _iDataUsers = iDataUsers; }
public ServiceBase(IRepoBase <T> repo) { this.repo = repo; }