Esempio n. 1
0
 public QuotationServicesModel SelectServiceByQouAndID(int QuotationID, int pkiQuotationSelectionID)
 {
     return(QuotationBAL.SelectServiceByQouAndID(QuotationID, pkiQuotationSelectionID));
 }
Esempio n. 2
0
 public int SaveDiscountAndAmount(QuotationDiscountModel model)
 {
     return(QuotationBAL.SaveDiscountAndAmount(model));
 }
Esempio n. 3
0
 public QuotationDiscountModel GetAllQuotationDiscounts(int QuotationID)
 {
     return(QuotationBAL.GetAllQuotationDiscounts(QuotationID));
 }
Esempio n. 4
0
 public QuotationModel GetQuotationNumberByID2(Guid ParlourId)
 {
     return(QuotationBAL.GetQuotationNumberByID2(ParlourId));
 }
Esempio n. 5
0
 public int UpdateAllData(int QuotationID, string Notes, string QuotationNumber)
 {
     return(QuotationBAL.UpdateAllData(QuotationID, Notes, QuotationNumber));
 }
Esempio n. 6
0
 public int SaveQuotationTaxAndDiscount(int QuotationID, Decimal Tax, Decimal Discount)
 {
     return(QuotationBAL.SaveQuotationTaxAndDiscount(QuotationID, Tax, Discount));
 }
Esempio n. 7
0
 public int UpdateQuotation(QuotationModel model)
 {
     return(QuotationBAL.UpdateQuotation(model));
 }
Esempio n. 8
0
 public QuotationServicesModel GetServiceByID(int ID)
 {
     return(QuotationBAL.GetServiceByID(ID));
 }
Esempio n. 9
0
 public int SaveService(QuotationServicesModel model)
 {
     return(QuotationBAL.SaveService(model));
 }
Esempio n. 10
0
 public List <QuotationModel> GetQuotationNumberByID(Guid ParlourId)
 {
     return(QuotationBAL.GetQuotationNumberByID(ParlourId));
 }
Esempio n. 11
0
 public List <QuotationServicesModel> GetAllQuotationServices(Guid ParlourId)
 {
     return(QuotationBAL.GetAllQuotationServices(ParlourId));
 }
Esempio n. 12
0
 public List <QuotationModel> GetAllQuotationByParlourId(Guid ParlourId, int PageSize, int PageNum, string Keyword, string SortBy, string SortOrder)
 {
     return(QuotationBAL.SelectQuotationByQuotationId(ParlourId, PageSize, PageNum, Keyword, SortBy, SortOrder));
 }
Esempio n. 13
0
 public QuotationModel SelectQuotationByQuotationId(int ID, Guid ParlourId)
 {
     return(QuotationBAL.SelectQuotationByQuotationId(ID, ParlourId));
 }
Esempio n. 14
0
 public int DeleteQuotation(int ID, string UserName)
 {
     return(QuotationBAL.QuotationDelete(ID, UserName));
 }
Esempio n. 15
0
 public int SaveQuotationMessage(QuotationMessageModel model)
 {
     return(QuotationBAL.SaveQuotationMessage(model));
 }
Esempio n. 16
0
 public List <QuotationServicesModel> SelectServiceByQoutationID(int QuotationID)
 {
     return(QuotationBAL.SelectServiceByQoutationID(QuotationID));
 }
Esempio n. 17
0
 public QuotationMessageModel SelectQuotationMessageByID(int QuotationID)
 {
     return(QuotationBAL.SelectQuotationMessageByID(QuotationID));
 }
Esempio n. 18
0
 public int DeleteServiceByID(int pkiQuotationSelectionID)
 {
     return(QuotationBAL.DeleteServiceByID(pkiQuotationSelectionID));
 }
Esempio n. 19
0
 public int QuotationStatus(int QuotationID, Guid parlourid, string status)
 {
     return(QuotationBAL.QuotationStatus(QuotationID, parlourid, status));
 }
Esempio n. 20
0
 public int SaveQuotation(QuotationModel model)
 {
     return(QuotationBAL.SaveQuotation(model));
 }