Ejemplo n.º 1
0
 public async Task <NetResult <List <ProjectConfig> > > ProjectConfigs(string id)
 {
     try
     {
         return(_config.Find(m => m.ProjectId == id).ToList());
     }
     catch (Exception ext)
     {
         return(ext);
     }
 }