Exemple #1
0
        public DataSet GetEmployeeMappings1(PAConfigurationModel model)
        {
            DataSet ds = new DataSet();

            ds = _paBusenessAcess.GetEmployeeMappings1(model);
            return(ds);
        }
Exemple #2
0
        public async Task <IHttpActionResult> GetEmployeeMappings(PAConfigurationModel model)
        {
            EmployeModel employee = new EmployeModel();

            employee = await _paBusenessAcess.GetEmployeeMappings(model);

            return(Ok(employee));
        }
Exemple #3
0
 public async Task <EmployeModel> GetEmployeeMappings(PAConfigurationModel model)
 {
     return(await _rfqDataAcess.GetEmployeeMappings(model));
 }
 public DataSet GetEmployeeMappings1(PAConfigurationModel model)
 {
     return(_purchaseDataAcess.GetEmployeeMappings1(model));
 }