public static List <tblMRNoteDTO> GetBillMRNote(int billId)
 {
     return(MRNoteRepository.GetBillMRNote(billId));
 }
 public static bool Delete(int MRNoteId)
 {
     return(MRNoteRepository.Delete(MRNoteId));
 }
 public static tblBillDTO GetMRNoteBillDetail(int billNo)
 {
     return(MRNoteRepository.GetMRNoteBillDetail(billNo));
 }
 public static List <tblMRNoteDTO> GetAll()
 {
     return(MRNoteRepository.GetAll());
 }
 public static tblMRNoteDTO Get(int MRNoteId)
 {
     return(MRNoteRepository.Get(MRNoteId));
 }
 public static int GetMRNo()
 {
     return(MRNoteRepository.GetMRNo());
 }
 public static bool CheckDuplicateMRNo(int mrId, int mrNo)
 {
     return(MRNoteRepository.CheckDuplicateMRNo(mrId, mrNo));
 }
 public static int Save(tblMRNoteDTO tblMRNoteDTO)
 {
     return(MRNoteRepository.Save(tblMRNoteDTO));
 }