Advertisement
Guest User

ClienService

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. public class ClientService : IClientService
  2.     {
  3.         private readonly LipaDB _ctx;
  4.         [PreferredConstructor]
  5.         public ClientService(LipaDB ctx)
  6.         {
  7.             _ctx = ctx;
  8.         }
  9.  
  10.         public Client SearchClient(string searchword)
  11.         {
  12.             using(_ctx)
  13.             {
  14.  
  15.             // ja tänne logiikka
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement