예제 #1
0
 public Task PerformCommandAsync(string connectionstring, string command, List <SqlParameter> sqlParameters)
 {
     return(Task.Run(() =>
     {
         MySQL_Service.PerformCommand(connectionstring, command, sqlParameters);
     }));
 }
예제 #2
0
 public Task PerformCommandAsync(string connectionstring, string command)
 {
     return(Task.Run(() =>
     {
         MySQL_Service.PerformCommand(connectionstring, command);
     }));
 }