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