public static IRowService Inject()
 {
     return(InjectDependencies
            .Inject(typeof(IRowService), typeof(RowService))
            .GetRequiredService <IRowService>());
 }
Esempio n. 2
0
 public static ISpreadsheetService Inject()
 {
     return(InjectDependencies
            .Inject(typeof(ISpreadsheetService), typeof(SpreadsheetService))
            .GetRequiredService <ISpreadsheetService>());
 }