Example #1
0
 public ctrlAttachments(APP_ENTITIES _entitry)
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     this.ENTITY = _entitry;
     Gnostice.Documents.Framework.ActivateLicense("1DD5-DBE6-E25F-15E6-7BFC-5062-64E8-58CE-71B6-CBA3-9ADF-F55A");
 }
Example #2
0
 public frmParty(string partyType)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.SelectedID        = 0;
     this.SelectedPartyType = partyType;
 }
 public AccountController(
     ServiceUOW serviceUOW,
     AccountService accountService)
 {
     _serviceUOW     = serviceUOW;
     _accountService = accountService;
 }
Example #4
0
 public frmGridMultiSelect(APP_ENTITIES entity, int sourceEntityID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     _ENTITY          = entity;
     SOURCE_ENTITY_ID = sourceEntityID;
 }
Example #5
0
 public frmLogin()
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     this.LoginSuccess = false;
     InitializeBackgroundWorker();
 }
Example #6
0
 public frmScheduleCall(int scheduleID)
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     MODEL            = new ScheduleCallAddEditModel();
     MODEL.ScheduleID = scheduleID;
 }
 public ctrlDocumentViewer(APP_ENTITIES entity, int entityID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.EntityType     = entity;
     this.EntityID       = entityID;
     btnDownload.Enabled = btnEmail.Enabled = ComponentFactory.Krypton.Toolkit.ButtonEnabled.False;
 }
 public ctrlDocumentViewer(string fileName, APP_ENTITIES entity, int entityID, int attachmentID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.FileName       = fileName;
     this.AttachmentID   = attachmentID;
     this.EntityType     = entity;
     this.EntityID       = entityID;
     btnDownload.Enabled = btnEmail.Enabled = ComponentFactory.Krypton.Toolkit.ButtonEnabled.False;
 }
Example #9
0
        public frmSendMail()
        {
            _UNIT = new ServiceUOW();
            InitializeComponent();
            lblParties.Tag    = APP_ENTITIES.PARTIES;
            lblEmployees.Tag  = APP_ENTITIES.EMPLOYEES;
            lblContacts.Tag   = APP_ENTITIES.CONTACTS;
            lblAssociates.Tag = APP_ENTITIES.ASSOCIATES_AND_CONTACTS;

            this.AttachedFiles = new Dictionary <string, string>();
        }
Example #10
0
 public pageSalesLead()
 {
     try
     {
         _UNIT = new ServiceUOW();
         InitializeComponent();
         Cursor   = Cursors.WaitCursor;
         _service = new ServiceSalesLead();
     }
     catch (Exception ex)
     {
         string errMessage = ex.Message;
         if (ex.InnerException != null)
         {
             errMessage += string.Format("\n{0}", ex.InnerException.Message);
         }
         MessageBox.Show(errMessage, "pageSalesLead::pageSalesLead", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Example #11
0
 public frmAddEditCity()
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
 }
Example #12
0
 public frmFollowUp()
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
 }
Example #13
0
 public frmGridMultiSelect(APP_ENTITIES entity)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     _ENTITY = entity;
 }
Example #14
0
 public frmSalesEnquiry()
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
 }
Example #15
0
 public frmADMINUserList(int valueID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.UserListID = valueID;
 }
Example #16
0
 public frmSalesLead(int id)
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     this.SelectedLeadID = id;
 }
 public ctrlDocumentViewer()
 {
     _UOM = new ServiceUOW();
 }
 public AccountQueryController(ServiceUOW serviceUOW)
 {
     _serviceUOW = serviceUOW;
 }
Example #19
0
 public frmContact()
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
 }
Example #20
0
 public ctrlAssociates(APP_ENTITIES EntityToAssociate)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.ENTITY = EntityToAssociate;
 }
Example #21
0
 public ctrlAssociates()
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
 }
Example #22
0
 public frmSalesEnquiry(int id)
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     this.SalesEnquiryID = id;
 }
Example #23
0
 public frmAddEditCity(int cityID)
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
     this.CityID = cityID;
 }
Example #24
0
 public frmSalesLead()
 {
     _UNIT = new ServiceUOW();
     InitializeComponent();
 }
Example #25
0
 public frmNewAttachment(int documentID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.LoginSuccess = false;
 }
Example #26
0
 public frmADMINUserList()
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
 }
Example #27
0
 public ctrlScheduler()
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
 }
Example #28
0
 public frmContact(int contactID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     this.ContactID = contactID;
 }
Example #29
0
 public frmMasterUserList(int mID)
 {
     _UOM = new ServiceUOW();
     InitializeComponent();
     ID = mID;
 }
Example #30
0
 public ctrlAttachments()
 {
     _UNIT = new ServiceUOW();
 }