public List <EntityWorkforce> GetAll()
 {
     return(FactoryWorkforce.GetList(base.DataContext.Workforce.ToList()));
 }
 public List <EntityWorkforce> GetActives()
 {
     return(FactoryWorkforce.GetList(base.DataContext.Workforce.Where(p => p.Status == true).ToList()));
 }