Esempio n. 1
0
 public object DeleteClassRegistrationDetail(ClassMasterCustomModel objClassRegistrationModel)
 {
     using (objDAL = new ClassMasterRepo())
     {
         return(objDAL.DeleteClassRegistrationDetail(objClassRegistrationModel));
     }
 }
Esempio n. 2
0
 public bool FindById(int Id)
 {
     using (objDAL = new ClassMasterRepo())
     {
         return(objDAL.FindById(Id));
     }
 }
Esempio n. 3
0
 public object GetClassMasterListing(ClassMasterCustomModel objClassRegistrationModel)
 {
     using (objDAL = new ClassMasterRepo())
     {
         return(objDAL.GetClassMasterListing(objClassRegistrationModel));
     }
 }
Esempio n. 4
0
 public Response SaveClassMasterDetails(ClassMasterCustomModel objModel)
 {
     using (objDAL = new ClassMasterRepo())
     {
         return(objDAL.SaveClassMasterDetails(objModel));
     }
 }
Esempio n. 5
0
 public ClassMasterCustomModel GetById(int Id)
 {
     using (objDAL = new ClassMasterRepo())
     {
         return(objDAL.GetById(Id));
     }
 }
Esempio n. 6
0
 public WorkEntryRepo()
 {
     this._repoUcode = new UserCodeRepo();
     this._repoResrc = new ResourceRepo();
     this._repoCls = new ClassMasterRepo();
     this._repoRule = new CoilBackRuleRepo();
     this._repoIn = new StoreInRepo();
 }
Esempio n. 7
0
 public PackingOrderRepo()
 {
     this._repoUcode = new UserCodeRepo();
     this._repoResrc = new ResourceRepo();
     this._repoCls = new ClassMasterRepo();
     this._repoRule = new CoilBackRuleRepo();
     this._repoIn = new StoreInRepo();
     this._repoWork = new WorkEntryRepo();
     this._repoProd = new ProductionRepo();
 }
Esempio n. 8
0
        public WorkEntry(SessionInfo _session = null, PlanningHeadModel model = null)
        {
            InitializeComponent();
            this._repoRes = new ResourceRepo();
            this._repoUcd = new UserCodeRepo();
            this._repo = new WorkEntryRepo();
            this._reRes = new ResourceRepo();
            this._repoSale = new SaleOrderRepo();
            this._repoCls = new ClassMasterRepo();

            this.HeaderContent = new PlanningHeadModel();
            this._class = new ClassMasterModel();

            //Initial Session and content
            this.HeaderContent = new PlanningHeadModel();
            epiSession = _session;
            if (model != null)
            {
                this.HeaderContent = model;
            }
        }
Esempio n. 9
0
 public SaleOrderRepo()
 {
     this._repoCls = new ClassMasterRepo();
 }