Exemplo n.º 1
0
 public UserBranchsService(
     IUserBranchsRepository userBranchsRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork
     )
 {
     this._userBranchsRepository = userBranchsRepository;
     this._languageService       = languageService;
     this._unitOfWork            = unitOfWork;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of
 /// type BranchsService.
 /// </summary>
 /// <param name="BranchsRepository"></param>
 /// <param name="unitOfWork"></param>
 public BranchsService(
     IBranchsRepository BranchsRepository,
     IUserBranchsRepository userBranchsRepository,
     ICurrentUserService currentUserService,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._BranchsRepository     = BranchsRepository;
     this._userBranchsRepository = userBranchsRepository;
     this._currentUserService    = currentUserService;
     this._languageService       = languageService;
     this._unitOfWork            = unitOfWork;
 }