Ejemplo n.º 1
0
        public string AddUpdateOrders(defaultModel Order)
        {
            int    intOrderStatus = 0;
            string strStatus      = "";

            if (Order != null)
            {
                objClass.intID         = Order.intID;
                objClass.strFirstName  = Order.strFirstName;
                objClass.strSecondName = Order.strSecondName;

                objClass.intIsActive = 1;
                objClass.intMode     = Order.intMode;
                intOrderStatus       = objClass.AddUpdateData();

                if (intOrderStatus == 1)
                {
                    strStatus = "Data Added Successfully!";
                }
                if (intOrderStatus == 2)
                {
                    strStatus = "Data Updated Successfully!";
                }
                if (intOrderStatus == 3)
                {
                    strStatus = "Data Deleted Successfully!";
                }
            }
            return(strStatus);
        }
Ejemplo n.º 2
0
        // GET: Default
        public async Task <ActionResult> Index()
        {
            //companyModel companyInfo = new companyModel();
            defaultModel defaultInfo = new defaultModel();

            using (var client = new HttpClient())
            {
                setClientSettings(client);
                //Sending request to find web api REST service resource GetAllEmployees using HttpClient
                HttpResponseMessage Res = await client.GetAsync("api/companyModels/1");

                //Checking the response is successful or not which is sent using HttpClient
                if (Res.IsSuccessStatusCode)
                {
                    //Storing the response details recieved from web api
                    var companyResponse = Res.Content.ReadAsStringAsync().Result;

                    //Deserializing the response recieved from web api and storing into the Employee list
                    defaultInfo.Company = JsonConvert.DeserializeObject <companyModel>(companyResponse);
                }

                List <employeeModel> EmpInfo = new List <employeeModel>();

                //Sending request to find web api REST service resource GetAllEmployees using HttpClient
                Res = await client.GetAsync("api/employeeModels");

                //Checking the response is successful or not which is sent using HttpClient
                if (Res.IsSuccessStatusCode)
                {
                    //Storing the response details recieved from web api
                    var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                    //Deserializing the response recieved from web api and storing into the Employee list
                    EmpInfo = JsonConvert.DeserializeObject <List <employeeModel> >(EmpResponse);
                }

                List <launalidurModel> launalidurInfo = new List <launalidurModel>();

                //Sending request to find web api REST service resource GetAllEmployees using HttpClient
                Res = await client.GetAsync("api/launalidurModels?fradrattur=false&aSedli=true");

                //Checking the response is successful or not which is sent using HttpClient
                if (Res.IsSuccessStatusCode)
                {
                    //Storing the response details recieved from web api
                    var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                    //Deserializing the response recieved from web api and storing into the Employee list
                    launalidurInfo = JsonConvert.DeserializeObject <List <launalidurModel> >(EmpResponse);
                }
                defaultInfo.Launalidur = new launalidurModel();
                defaultInfo.Launalidur.launalidurList = new SelectList(launalidurInfo, "gildi", "heiti");

                List <launalidurModel> OtherPaymentsList = new List <launalidurModel>();

                //Sending request to find web api REST service resource GetAllEmployees using HttpClient
                Res = await client.GetAsync("api/launalidurModels?fradrattur=false&aSedli=false");

                //Checking the response is successful or not which is sent using HttpClient
                if (Res.IsSuccessStatusCode)
                {
                    //Storing the response details recieved from web api
                    var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                    //Deserializing the response recieved from web api and storing into the Employee list
                    OtherPaymentsList = JsonConvert.DeserializeObject <List <launalidurModel> >(EmpResponse);
                }

                defaultInfo.OtherPaymentsList = new SelectList(OtherPaymentsList, "gildi", "heiti");

                string idEmployee = Request["Employee.name"];
                defaultInfo.Employee = new employeeModel();

                if (idEmployee != null)
                {
                    Res = await client.GetAsync("api/employeeModels/" + idEmployee);

                    if (Res.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Employee list
                        defaultInfo.Employee = JsonConvert.DeserializeObject <employeeModel>(EmpResponse);
                    }

                    Res = await client.GetAsync("api/employeeSettingsModels/" + idEmployee);

                    defaultInfo.employeeSettings = new employeeSettingsModel();

                    if (Res.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Employee list
                        defaultInfo.employeeSettings = JsonConvert.DeserializeObject <employeeSettingsModel>(EmpResponse);
                    }

                    Res = await client.GetAsync("api/employeeFees/" + idEmployee);

                    if (Res.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var EmpResponse = Res.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Employee list
                        defaultInfo.employeeFees = JsonConvert.DeserializeObject <employeeFeesModels>(EmpResponse);
                    }
                }

                defaultInfo.Employee.employeeList = new SelectList(EmpInfo, "Id", "name");

                //returning the employee list to view
                return(View(defaultInfo));
            }
        }
Ejemplo n.º 3
0
 public CategoryController(defaultModel context, ICategoryUtility categoryUtility)
 {
     _context         = context;
     _categoryUtility = categoryUtility;
 }
Ejemplo n.º 4
0
 public DefaultController(defaultModel context, IDefaultUtility defaultUtility)
 {
     _context        = context;
     _defaultUtility = defaultUtility;
 }