コード例 #1
0
        public App()
        {
            IDAL theDAL = new DAL_SQL();
            IBL  theBL  = new BL_Process(theDAL);
            IPL  thePL  = new LoginWindow(theBL);

            thePL.Run();
        }
コード例 #2
0
    private void Seve_Process(dynamic data)
    {
        string _sProList = JsonConvert.SerializeObject(data.saveData._data);
        List <CRM.Campaigns.CT_Auth_Process> _ProList = JsonConvert.DeserializeObject <List <CRM.Campaigns.CT_Auth_Process> >(_sProList);
        BL_Process _Pre = new BL_Process();
        int        i    = _Pre.Save_Provess(_ProList, (int)data.saveData.Cam_Cat, (int)data.saveData.IType, UserSession.DealerEmpl.DE_AU_Code, UserSession.DealerEmpl.DE_UType, UserSession.DealerEmpl.DE_AD_OM_Code);

        Response.Write(i);
    }