Ejemplo n.º 1
0
 public async Task <IDataResult <List <OperationClaim> > > GetAll()
 {
     return(new SuccessDataResult <List <OperationClaim> >(await _operationClaimDal.GetAllAsync()));
 }
Ejemplo n.º 2
0
        public async Task <IDataResult <IList <OperationClaim> > > GetAllOperationClaims()
        {
            var list = await _operationClaimDal.GetAllAsync();

            return(new SuccessDataResult <IList <OperationClaim> >(list));
        }
Ejemplo n.º 3
0
        public async Task <IDataResult <List <OperationClaim> > > GetAllAsync()
        {
            var result = await _operationClaimDal.GetAllAsync();

            return(new SuccessDataResult <List <OperationClaim> >(result, Messages.OperationClaim.GetAllSuccess));
        }