예제 #1
0
 /// <summary>
 /// expedituresubtype - exTypeId
 /// </summary>
 public List<ExpeditureSubType> Expedituresubtype()
 {
     using(var dap = new ExpeditureSubTypeAccess(Container, true))
     {
         return dap.GetByexTypeId(ExTypeId);
     }
 }
예제 #2
0
파일: Expediture.cs 프로젝트: mbithy/Octane
 public ExpeditureSubType ExpeditureSubtype()
 {
     using(var dap = new ExpeditureSubTypeAccess(Container, true))
     {
         if(ExSubTypeId != null)
             return dap.GetByexSubTypeId(ExSubTypeId.Value);
         return null;
     }
 }