Exemplo n.º 1
0
 /// <summary>
 /// expedituresubtype - exTypeId
 /// </summary>
 public List<ExpeditureSubType> Expedituresubtype()
 {
     using(var dap = new ExpeditureSubTypeAccess(Container, true))
     {
         return dap.GetByexTypeId(ExTypeId);
     }
 }
Exemplo n.º 2
0
 public ExpeditureSubType ExpeditureSubtype()
 {
     using(var dap = new ExpeditureSubTypeAccess(Container, true))
     {
         if(ExSubTypeId != null)
             return dap.GetByexSubTypeId(ExSubTypeId.Value);
         return null;
     }
 }