14 lines
338 B
C#
14 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace de.hottis.genericdatabaseapiservice.Services {
|
|
public interface IDbService {
|
|
void JustDoSomething(string msg);
|
|
}
|
|
|
|
public class DbService : IDbService {
|
|
public void JustDoSomething(string msg) {
|
|
Console.WriteLine(msg);
|
|
}
|
|
}
|
|
} |