- 0 [REPETIDA]
- 1
- 2
- 3
- 4
- 5 [REPETIDA]
- 6
- 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using NUnit.Framework; | |
using SharpTestsEx; | |
using Vinci.Framework.DataBase; | |
namespace TestDapper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal abstract class AbstractDays360 | |
{ | |
public abstract int Calculate(DateTime start, DateTime end); | |
protected static int Calculate(DateTime start, DateTime end, int startDay, int endDay) | |
{ | |
return (end.Year - start.Year) * 360 + (end.Month - start.Month) * 30 + (endDay - startDay); | |
} | |
protected static bool LastDayOfFebruary(DateTime date) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
public static class Program | |
{ | |
public static void Main(string[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========================================================= | |
* composer-view.js v0.2.1 | |
* ========================================================= | |
* Copyright 2013 Wpbakery | |
* | |
* Visual composer backbone/underscore version | |
* ========================================================= */ | |
(function ( $ ) { | |
var i18n = window.i18nLocale, | |
store = vc.storage, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace BlackScholes | |
{ | |
/// <summary> | |
/// Summary description for BlackSholes. | |
/// </summary> | |
public class BlackSholes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Leste.Robot.Base | |
{ | |
public enum Environment | |
{ | |
Development = 0x01, | |
Homologation = 0x02, | |
Production = 0x04, | |
/// <summary> | |
/// Includes Development | Homologation | Production | |
/// </summary> |
OlderNewer