示例#1
0
 public bool DeleteUserDetailTransaction(string nop, DateTime tglTransaksi)
 {
     return(UserTransactionDetailData.DeleteUserDetailTransaction(nop, tglTransaksi));
 }
示例#2
0
 public bool InsertUserTransactionDetail(string username, string xmlPath, int bulan, int tahun, DateTime transDate, string ipAddress, string xmlfile, string nop)
 {
     return(UserTransactionDetailData.InsertUserTransactionDetail(username, xmlPath, bulan, tahun, transDate, ipAddress, xmlfile, nop));
 }
示例#3
0
 public string GetXmlFileByNop(string nop, int bulan, int tahun)
 {
     return(UserTransactionDetailData.GetXmlFileByNop(nop, bulan, tahun));
 }
示例#4
0
 public IEnumerable <UserDetailWithPajak> RetrieveTransactionDetailOrderByDate(DateTime tglAWal, DateTime tglAkhir)
 {
     return(UserTransactionDetailData.RetrieveDetailOrderByDate(tglAWal, tglAkhir).AsEnumerable <UserDetailWithPajak>());
 }
示例#5
0
 public IEnumerable <UserTransactionDetail> RetrieveUserDetailTransactionByDateTransaction(string nop, DateTime tglTransaksi)
 {
     return(UserTransactionDetailData.RetrieveUserDetailTransactionByDateTransaction(nop, tglTransaksi).AsEnumerable <UserTransactionDetail>());
 }
示例#6
0
 public IEnumerable <UserTransactionDetail> RetrieveUserTransactionDetailByMonth(string username, string nop, int bulan, int tahun)
 {
     return(UserTransactionDetailData.RetrieveUserDetailTransactionByMonth(username, nop, bulan, tahun).AsEnumerable <UserTransactionDetail>());
 }
示例#7
0
 public IEnumerable <UserTransactionDetail> RetrieveUserTransactionDetailByDate(string username, DateTime tgltransaksi)
 {
     return(UserTransactionDetailData.RetrieveUserDetailTransactionByDate(username, tgltransaksi).AsEnumerable <UserTransactionDetail>());
 }