public ResultModels InsertIndustry(List <IndustryModels> lstInfo) { var result = new ResultModels(); if (lstInfo != null && lstInfo.Any()) { IndustryFactory IndustryFactory = new IndustryFactory(); //result.IsOk = IndustryFactory.Insert(lstInfo); } return(result); }
public IndustryController() { _industryF = new IndustryFactory(); }