예제 #1
0
파일: ServiceItem.cs 프로젝트: zicjin/Board
 public ServiceItem(
     ItemtempRepository itemtempRepo,
     SelpropRepository propRepo,
     UnitOfWork unit)
     : base(unit)
 {
     this.itemtemp_repo = itemtempRepo;
     this.prop_repo = propRepo;
 }
예제 #2
0
파일: ServiceUser.cs 프로젝트: zicjin/Board
 public ServiceUser(
     UserRepository userRepo,
     RoleRepository roleRepo,
     AuthRepository authRepo,
     UnitOfWork unit)
     : base(unit)
 {
     this.user_repo = userRepo;
     this.role_repo = roleRepo;
     this.auth_repo = authRepo;
 }
예제 #3
0
파일: ServiceSeat.cs 프로젝트: zicjin/Board
 public ServiceSeat(
     SeatHistoryRepository seathistRepo,
     SeatRepository seatRepo,
     AuthRepository authRepo,
     UserRepository userRepo,
     FolderRepository folderRepo,
     UnitOfWork unit)
     : base(unit)
 {
     this.seathist_repo = seathistRepo;
     this.seat_repo = seatRepo;
     this.auth_repo = authRepo;
     this.user_repo = userRepo;
     this.folder_repo = folderRepo;
 }
예제 #4
0
파일: Submit.cs 프로젝트: zicjin/Board
 public Submit(UnitOfWork unitOfWork)
 {
     this.unit = unitOfWork;
 }