public async Task <IHttpActionResult> delete([FromBody] BILL_SETTINGSVM entity) { var result = await billSettingsService.DeleteAsync(entity); await LogData(null, entity.BILL_SETTING_ID.ToString()); return(Ok(result)); }
public async Task <IHttpActionResult> add([FromBody] BILL_SETTINGSVM entity) { var result = await billSettingsService.InsertAsync(entity); await LogData(null, result.ToString()); return(Ok(result)); }
public async Task <IHttpActionResult> chkExist([FromBody] BILL_SETTINGSVM entity) { return(Ok(await billSettingsService.CheckExist(entity))); }