Example #1
0
 /// <summary>
 /// Returns view models of all staff at a particular store
 /// </summary>
 public IList <StaffViewModel> GetAllEmployesByStore(int store_id)
 {
     return(_staffDAO.GetAllEmployees(store_id));
 }