Ejemplo n.º 1
0
 public void DelProjectDetail(int ProjectId)
 {
     DLAddInvoice dlaRec = new DLAddInvoice();
       try
       {
       dlaRec.DelProjectDetail(ProjectId);
       }
       catch
       {
       throw;
       }
       finally
       {
       dlaRec = null;
       }
 }
Ejemplo n.º 2
0
 public void AddInvoiceDetail(int InvoiceId, int ProjectId, float  ProjectAmount)
 {
     DLAddInvoice dlaRec = new DLAddInvoice();
       try
       {
       dlaRec.AddInvoiceDetail(InvoiceId, ProjectId, ProjectAmount);
       }
       catch
       {
       throw;
       }
       finally
       {
       dlaRec = null;
       }
 }
Ejemplo n.º 3
0
 public void AddInvoice(int invoiceid,string InvoiceNo, DateTime Date, int ClientId, decimal Amount, decimal OtherCharges, decimal TotalAmount, string Remarks, string Status, int isDeleted, int Approve,int mode)
 {
     DLAddInvoice   dlaRec = new DLAddInvoice  ();
       try
       {
       dlaRec.AddInvoice(invoiceid,InvoiceNo, Date, ClientId, Amount, OtherCharges, TotalAmount, Remarks, Status, isDeleted, Approve,mode );
       }
       catch
       {
       throw;
       }
       finally
       {
       dlaRec = null;
       }
 }
Ejemplo n.º 4
0
 public SqlDataReader getClIdByName(string ClNm)
 {
     DLAddInvoice dlAddCl = new DLAddInvoice();
     try
     {
         SqlDataReader dr = dlAddCl.getClIdByName(ClNm);
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //con.Close();
         //con.Dispose();
     }
 }
Ejemplo n.º 5
0
 public SqlDataReader getClientidName()
 {
     DLAddInvoice dlAddCl = new DLAddInvoice();
     try
     {
         SqlDataReader dr = dlAddCl.getClientIdName ();
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //con.Close();
         //con.Dispose();
     }
 }
Ejemplo n.º 6
0
 public SqlDataReader GetInvoiceId1()
 {
     DLAddInvoice dlAdIn = new DLAddInvoice();
     try
     {
         SqlDataReader dr = dlAdIn.GetInvoiceId1();
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //con.Close();
         //con.Dispose();
     }
 }
Ejemplo n.º 7
0
 public SqlDataReader getInvoiceForUpdate(int invoiceid)
 {
     DLAddInvoice dlAdIn = new DLAddInvoice();
     try
     {
         SqlDataReader dr = dlAdIn.getInvoiceForUpdate(invoiceid );
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         dlAdIn = null;
         //con.Close();
         //con.Dispose();
     }
 }
Ejemplo n.º 8
0
 public DataTable GetInvoiceDetailForUpdate(int invoiceid)
 {
     DLAddInvoice dlAddCl = new DLAddInvoice();
     try
     {
         DataTable  dr = dlAddCl.GetInvoiceDetailForUpdate(invoiceid);
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //con.Close();
         //con.Dispose();
     }
 }