public List <Division> Get() { var result = _divisionRepository.Get(); return(result); }
public bool CheckIsExist(Division division) { return(divisionRepository.Get(chk => chk.Name == division.Name) == null ? false : true); }
public List <Division> Get() { return(_divisionRepository.Get().ToList()); }