Beispiel #1
0
 public ProjectManagement()
 {
     projectRepository = new RepositoryProject();
     accoutM           = new RepositoryAccount();
     taskManagement    = new TaskManagement();
     configSystenm     = new RepositoryConfig();
 }
Beispiel #2
0
 public AccountManagement()
 {
     accountRepository = new RepositoryAccount();
     configSystenm     = new RepositoryConfig();
 }
Beispiel #3
0
 public AccountController(IRepositoryAccount <Account> repo, ILogger <AccountController> logger) : base(logger)
 {
     _repo = repo;
 }
Beispiel #4
0
 public ServiceAccount(IRepositoryAccount accountRepository)
 {
     _accountRepository = accountRepository;
 }
Beispiel #5
0
 public AccountController(IRepositoryAccount repo)
 {
     this.repo = repo;
 }