Exemplo n.º 1
0
 public BE.ClientAudit InsertClientAudit(BE.ClientAudit entity)
 {
     //@@NEW - removed try/catch. insert returns DA entity (with new data). this method now returns an entity.
     DA.ClientAuditGateway gateway = new DA.ClientAuditGateway();
     DA.ClientAudit result = gateway.Insert(entity.ToDataEntity());
     return result.ToBusinessEntity();
 }
Exemplo n.º 2
0
 public List<BE.ClientAudit> GetClientAuditsForPaymentInfoByPaymentInfoGuid(Guid paymentInfoGuid)
 {
     DA.ClientAuditGateway gateway = new DA.ClientAuditGateway();
     List<BE.ClientAudit> result = new List<BE.ClientAudit>();
     result = gateway.GetForPaymentInfoByPaymentInfoGuid(paymentInfoGuid).ToBusinessEntitiesList();
     return result;
 }
Exemplo n.º 3
0
 public BE.ClientAudit GetClientAuditByClientAuditGuid(Guid clientAuditGuid)
 {
     DA.ClientAuditGateway gateway = new DA.ClientAuditGateway();
     BE.ClientAudit result = new BE.ClientAudit();
     result = gateway.GetByPK(clientAuditGuid).ToBusinessEntity();
     return result;
 }
Exemplo n.º 4
0
 public List<BE.ClientAudit> GetClientAuditsForClientByClientGuid(Guid clientGuid)
 {
     DA.ClientAuditGateway gateway = new DA.ClientAuditGateway();
     List<BE.ClientAudit> result = new List<BE.ClientAudit>();
     result = gateway.GetForClientByClientGuid(clientGuid).ToBusinessEntitiesList();
     return result;
 }
Exemplo n.º 5
0
 public List<BE.ClientAudit> GetAllClientAuditWithUndefined()
 {
     DA.ClientAuditGateway gateway = new DA.ClientAuditGateway();
     List<BE.ClientAudit> result = new List<BE.ClientAudit>();
     result = gateway.GetAllWithUndefined().ToBusinessEntitiesList();
     return result;
 }