示例#1
0
 public CompanyController(IUserService userService, ICompanySevice companySevice, IUnitOfWork unitOfWorkAsync)
     : base( )
 {
     _companyService  = companySevice;
     _userService     = userService;
     _unitOfWorkAsync = unitOfWorkAsync;
 }
示例#2
0
 public ProfileController(ICompanySevice companySevice, IUnitOfWork unitOfWorkAsync)
     : base()
 {
     _companyService  = companySevice;
     _unitOfWorkAsync = unitOfWorkAsync;
 }