示例#1
0
 public async virtual Task <IEnumerable <Customer> > GetAll(Guid companyId)
 {
     // Get employee from repo
     return(await _customerRepo.GetAllByCompanyId(companyId));
 }