コード例 #1
0
 public Employee GetEmployee()
 {
     using (var db = TimeClockUnitOfWork.Create())
     {
         return(db.Employees.SearchByUserIdentity(User.Identity.GetUserId()));
     }
 }
コード例 #2
0
 public TimeClock(TimeClockUnitOfWork uow)
 {
     db = uow;
 }
コード例 #3
0
 public PayrollCalculator(TimeClockUnitOfWork uow)
 {
     db = uow;
 }