Exemplo n.º 1
0
 public CompanyController(IUserService userService, ICompanySevice companySevice, IUnitOfWork unitOfWorkAsync)
     : base( )
 {
     _companyService  = companySevice;
     _userService     = userService;
     _unitOfWorkAsync = unitOfWorkAsync;
 }
Exemplo n.º 2
0
 public ProfileController(ICompanySevice companySevice, IUnitOfWork unitOfWorkAsync)
     : base()
 {
     _companyService  = companySevice;
     _unitOfWorkAsync = unitOfWorkAsync;
 }