Ejemplo n.º 1
0
        public DataTable GetConsultantPayment(DateTime FromDate, DateTime Todate)
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.GetConsultantPayment(FromDate, Todate);
            return(data);
        }
Ejemplo n.º 2
0
        public DataTable DueBillStatus(string Chk, DateTime FromDate, DateTime Todate)
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.DueStatus(Chk, FromDate, Todate);
            return(data);
        }
Ejemplo n.º 3
0
        public DataTable DueBillStatusAllByReff(DateTime FromDate, DateTime Todate, string Reff)
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.DueStatusAllbyReff(FromDate, Todate, Reff);
            return(data);
        }
Ejemplo n.º 4
0
        public DataTable GridLoadDutyDoctor(string Doctor)
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.GridLoadDutyDoctor(Doctor);
            return(data);
        }
Ejemplo n.º 5
0
        public DataTable GridLoadDefault()
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.GridLoadDefault();
            return(data);
        }
Ejemplo n.º 6
0
        public DataTable GridLoadRefferedBy(string RefferedBy)
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.GridLoadRefferedBy(RefferedBy);
            return(data);
        }
Ejemplo n.º 7
0
        public DataTable LoadRefferedInfo()
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.LoadRefferedInfo();
            return(data);
        }
Ejemplo n.º 8
0
        public DataTable LoadPathology()
        {
            DataTable data = new DataTable();

            aDoctorWisePatientGatway = new DoctorWisePatientGatway();
            data = aDoctorWisePatientGatway.LoadPathology();
            return(data);
        }
Ejemplo n.º 9
0
        public MessageModel SaveConsultantPayment(DAL.Model.Pathology aService)
        {
            int saveService = new DoctorWisePatientGatway().SaveConsultantPayment(aService);

            if (saveService > 0)
            {
                messageModel.MessageBody  = " save successfully!";
                messageModel.MessageTitle = "Successfull";
            }
            return(messageModel);
        }
Ejemplo n.º 10
0
        public MessageModel DeleteCommission(Comission aService)
        {
            int saveService = new DoctorWisePatientGatway().DeleteCommission(aService);

            if (saveService > 0)
            {
                messageModel.MessageBody  = " Delete successfully!";
                messageModel.MessageTitle = "Successfull";
            }
            return(messageModel);
        }