예제 #1
0
 public frmBarCodeOrder(IJewelService jewelService, ICatalogueService catalogueService)
     : this()
 {
     _catalogueService = catalogueService;
     _jewelService     = jewelService;
     CatalogueRequest  = new List <QueryRequest>();
 }
        public frmAllCatalogueProduct(ICatalogueService catalogueService, IJewelService jewelService)
            : this()
        {
            _catalogueService = catalogueService;
            _jewelService     = jewelService;

            CatalogueRequest = new List <QueryRequest>();
        }
        public frmJewelMaster(IJewelService jewelService, IWinSettingProvider winSettingProvider)
            : this()
        {
            _jewelService       = jewelService;
            _winSettingProvider = winSettingProvider;
            crystalReportViewer1.ToolPanelView = ToolPanelViewType.None;

            txtDiamondPcs.KeyPress += WinEvents.AllowNumber_KeyPress;
            txtDiamondWt.KeyPress  += WinEvents.AllowNumeric_KeyPress;
            txtNetWt.KeyPress      += WinEvents.AllowNumeric_KeyPress;
            txtGrsWt.KeyPress      += WinEvents.AllowNumeric_KeyPress;

            BindForm();
        }
예제 #4
0
 public frmAllJewelsBarcodePrint(IJewelService jewelService)
     : this()
 {
     SelectedJewels = new List <JewelMaster>();
     Jewels         = jewelService.GetJewelMaster();
 }
예제 #5
0
 public frmProduct(IJewelService jewelService)
     : this()
 {
     _jewelService = jewelService;
 }