Exemplo n.º 1
0
        public static DataTable GetItemsBoughtReportData(Guid funeralId)
        {
            var records = SharedService.ExecuteGetDtSqlStoredProcedure("[bbu].[Report_invoice_itemsbought]",
                                                                       new List <SqlParameter>
            {
                new SqlParameter("@funeralId", funeralId),
            });

            return(records);
        }
Exemplo n.º 2
0
        public static DataTable GetConfirmationLetterReportData(Guid funeralId)
        {
            var records = SharedService.ExecuteGetDtSqlStoredProcedure("[bbu].[Report_confirmationletter]",
                                                                       new List <SqlParameter>
            {
                new SqlParameter("@funeralId", funeralId),
            });

            return(records);
        }
Exemplo n.º 3
0
        public static DataTable GetBankAccountReportData()
        {
            var records = SharedService.ExecuteGetDtSqlStoredProcedure("[bbu].[Report_invoice_bankaccount]", null);

            return(records);
        }