public PatientBillingTempImpl(IPatientBillingTempRepository patientBillingTempRepository)
 {
     _patientBillingTempRepository = patientBillingTempRepository;
 }
 public void TempExcelInitializer()
 {
     _patientBillingTempRepository = new PatientBillingTempRepository(new Core.Base.Data.SqlServer.Factory.BaseContextFactory <LMGEDI.Core.Data.SqlServer.LMGEDIDBContext>());
     _patientBillingBL             = new PatientBillingTempImpl(_patientBillingTempRepository);
 }